home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Arsenal 1
/
Tech Arsenal (Arsenal Computer).ISO
/
tek-02
/
xlib.zip
/
EXT.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1992-08-31
|
2KB
|
47 lines
(*****************************************************************************)
(* *)
(* Filename : EXT.PAS *)
(* Autor : Stefan Boether *)
(* System : TURBO 5.50 / MS-DOS 3.2 / Netzwerk *)
(* Aenderung : *)
(* wann was wer *)
(*---------------------------------------------------------------------------*)
(* 28.12.90 Erstelldatum_____________________________________ Stefc *)
(* 04.05.92 Als Unit umgewandelt_____________________________ Stefc *)
(*****************************************************************************)
(* Beschreibung: Bekannte Dateierweiterungen *)
(*****************************************************************************)
{Header-End}
UNIT Ext;
INTERFACE
CONST Arc_Ext = '.ARC';
Zip_Ext = '.ZIP';
Com_Ext = '.COM';
Exe_Ext = '.EXE';
Ovr_Ext = '.OVR';
Bat_Ext = '.BAT';
Bak_Ext = '.BAK';
Pas_Ext = '.PAS';
Sys_Ext = '.SYS';
Txt_Ext = '.TXT';
Dat_Ext = '.DAT';
Idx_Ext = '.I?X';
Tpu_Ext = '.TPU';
Obj_Ext = '.OBJ';
Ini_Ext = '.INI';
Hlp_Ext = '.HLP'; (* compiled helpfile *)
Res_Ext = '.RES'; (* TV - Resource File *)
Reg_Ext = '.REG'; (* Programm registration files *)
Dsk_Ext = '.DSK'; (* Desktop file *)
Hpr_Ext = '.HPR'; (* Help-project files *)
Tpm_Ext = '.TPM'; (* Make-Project files *)
All_Ext = '*.*';
IMPLEMENTATION
END.